home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
mg_comm.com
/
TERM.C
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-03-13
|
234 b
|
16 lines
#include "comm.h"
main()
{
int i=0;
SetIntr(0); /* Port 0 (COM1) */
PortInit(0,1200,0,8,1);
while(i!=27)
{
if(kbhit() && (i=getch()) != 0x1B)
Xmit(i);
if(SerAvl())
putch(GetSer());
}
ResetIntr(0);
}